home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 4,701 to 4,800 / aol-file-protocol-4400-4701-to-4800.zip / AOLDLs / Autocad Utilities / PATCH_ R13c1 All Update 1_4 / 13C1U1.exe / WININST.BAT < prev   
DOS Batch File  |  1995-01-13  |  1KB  |  53 lines

  1. @echo off
  2. rem
  3. rem  First check for argument            
  4. rem  ------------------------------------
  5. if .%1 == . goto putusage
  6. goto argok
  7. :putusage
  8. echo.
  9. echo Usage:  From the MS-DOS prompt, change to the directory 
  10. echo         where AutoCAD(R) Windows Release 13 is installed 
  11. echo         and either:
  12. echo.
  13. echo         1- If installing from floppy disk and a: is your
  14. echo            floppy drive, type:
  15. echo.
  16. echo               a:wininst a:
  17. echo.
  18. echo                    --OR--
  19. echo.
  20. echo         2- If installing from a single directory such as
  21. echo            c:\patch, type:
  22. echo.
  23. echo               c:\patch\wininst c:\patch
  24. echo.
  25.  
  26. goto done
  27. :argok
  28. echo.
  29. echo AutoCAD(R) Windows Release 13_c1 update utility.
  30. echo v1.1(12Jan95)
  31. echo.
  32. echo This program will update your current AutoCAD
  33. echo Windows Release 13 installation.
  34. echo.
  35. echo Be sure the current directory is where AutoCAD Windows
  36. echo Release 13 ACAD.EXE is installed before proceeding.
  37. echo.
  38. echo.
  39. echo Press CTRL-C to exit now  --OR--
  40. pause
  41.  
  42. if exist acad.exe goto doit
  43. echo.
  44. echo ACAD.EXE not found.
  45. echo.
  46. pause
  47. goto argok 
  48.  
  49. :doit
  50. rem copy installation batch file to current directory and run it.
  51. copy %1\llatsniw.bat
  52. llatsniw %1
  53.